Two of the pieces go inside the loop to make up the loop body.
Here is the completed program. The price calculation fragment and the printing fragment are nested inside the FOR loop. The FOR loop is in charge of counting; the loop body is in charge of what to do with each value of COPIES.
PRINT "Number of Copies", "Price"
FOR COPIES = 1 TO 50
' per copy price calculation
IF COPIES < 6 THEN
LET PERCOPY = 0.15
ELSE
LET PERCOPY = 0.07
END IF
' print a line of the table
PRINT COPIES, COPIES * PERCOPY
NEXT COPIES
'
END
Could the loop body be written in a different way?